Principal component analysis

PCA of a multivariate Gaussian distribution centered at (1,3) with a standard deviation of 3 in roughly the (0.878, 0.478) direction and of 1 in the orthogonal direction.

Principal component analysis (PCA) involves a mathematical procedure that transforms a number of possibly correlated variables into a smaller number of uncorrelated variables called principal components. The first principal component accounts for as much of the variability in the data as possible, and each succeeding component accounts for as much of the remaining variability as possible. Depending on the field of application, it is also named the discrete Karhunen–Loève transform (KLT), the Hotelling transform or proper orthogonal decomposition (POD).

PCA was invented in 1901 by Karl Pearson.[1] Now it is mostly used as a tool in exploratory data analysis and for making predictive models. PCA involves the calculation of the eigenvalue decomposition of a data covariance matrix or singular value decomposition of a data matrix, usually after mean centering the data for each attribute. The results of a PCA are usually discussed in terms of component scores and loadings (Shaw, 2003).

PCA is the simplest of the true eigenvector-based multivariate analyses. Often, its operation can be thought of as revealing the internal structure of the data in a way which best explains the variance in the data. If a multivariate dataset is visualised as a set of coordinates in a high-dimensional data space (1 axis per variable), PCA supplies the user with a lower-dimensional picture, a "shadow" of this object when viewed from its (in some sense) most informative viewpoint.

PCA is closely related to factor analysis; indeed, some statistical packages deliberately conflate the two techniques. True factor analysis makes different assumptions about the underlying structure and solves eigenvectors of a slightly different matrix.

Contents

Details

PCA is mathematically defined[2] as an orthogonal linear transformation that transforms the data to a new coordinate system such that the greatest variance by any projection of the data comes to lie on the first coordinate (called the first principal component), the second greatest variance on the second coordinate, and so on. PCA is theoretically the optimum transform for given data in least square terms.

For a data matrix, XT, with zero empirical mean (the empirical mean of the distribution has been subtracted from the data set), where each row represents a different repetition of the experiment, and each column gives the results from a particular probe, the PCA transformation is given by:


\begin{align}
\mathbf{Y}^{\rm T} & = \mathbf{X}^{\rm T}\mathbf{W} \\
& = \mathbf{V}\mathbf{\Sigma}^{\rm T}
\end{align}

where the matrix Σ is an m-by-n diagonal matrix with nonnegative real numbers on the diagonal and W Σ VT is the singular value decomposition (svd) of X.

Given a set of points in Euclidean space, the first principal component (the eigenvector with the largest eigenvalue) corresponds to a line that passes through the mean and minimizes sum squared error with those points. The second principal component corresponds to the same concept after all correlation with the first principal component has been subtracted out from the points. Each eigenvalue indicates the portion of the variance that is correlated with each eigenvector. Thus, the sum of all the eigenvalues is equal to the sum squared distance of the points with their mean divided by the number of dimensions. PCA essentially rotates the set of points around their mean in order to align with the first few principal components. This moves as much of the variance as possible (using a linear transformation) into the first few dimensions. The values in the remaining dimensions, therefore, tend to be highly correlated and may be dropped with minimal loss of information. PCA is often used in this manner for dimensionality reduction. PCA has the distinction of being the optimal linear transformation for keeping the subspace that has largest variance. This advantage, however, comes at the price of greater computational requirement if compared, for example, to the discrete cosine transform. Nonlinear dimensionality reduction techniques tend to be more computationally demanding than PCA.

Discussion

Mean subtraction (a.k.a. "mean centering") is necessary for performing PCA to ensure that the first principal component describes the direction of maximum variance. If mean subtraction is not performed, the first principal component will instead correspond to the mean of the data. A mean of zero is needed for finding a basis that minimizes the mean square error of the approximation of the data[3].

Assuming zero empirical mean (the empirical mean of the distribution has been subtracted from the data set), the principal component w1 of a data set x can be defined as:

\mathbf{w}_1
 = \underset{\Vert \mathbf{w} \Vert = 1}{\operatorname{\arg\,max}}\,\operatorname{Var}\{ \mathbf{w}^T \mathbf{x} \}
 = \underset{\Vert \mathbf{w} \Vert = 1}{\operatorname{\arg\,max}}\,E\left\{ \left( \mathbf{w}^T \mathbf{x}\right)^2 \right\}

(See arg max for the notation.) With the first k − 1 components, the kth component can be found by subtracting the first k - 1 principal components from x:

\mathbf{\hat{x}}_{k - 1}
 = \mathbf{x} -
 \sum_{i = 1}^{k - 1}
 \mathbf{w}_i \mathbf{w}_i^T \mathbf{x}

and by substituting this as the new data set to find a principal component in

\mathbf{w}_k
 = \underset{\Vert \mathbf{w} \Vert = 1}{\operatorname{arg\,max}}\,E\left\{
 \left( \mathbf{w}^T \mathbf{\hat{x}}_{k - 1}
 \right)^2 \right\}.

The Karhunen–Loève transform is therefore equivalent to finding the singular value decomposition of the data matrix X,

\mathbf{X}=\mathbf{W}\mathbf{\Sigma}\mathbf{V}^T,

and then obtaining the reduced-space data matrix Y by projecting X down into the reduced space defined by only the first L singular vectors, WL:

\mathbf{Y}=\mathbf{W_L}^T\mathbf{X} = \mathbf{\Sigma_L}\mathbf{V_L}^T

The matrix W of singular vectors of X is equivalently the matrix W of eigenvectors of the matrix of observed covariances C = X XT,

\mathbf{X}\mathbf{X}^T = \mathbf{W}\mathbf{\Sigma}\mathbf{\Sigma}^T\mathbf{W}^T

The eigenvectors with the largest eigenvalues correspond to the dimensions that have the strongest correlation in the data set (see Rayleigh quotient).

PCA is equivalent to empirical orthogonal functions (EOF), a name which is used in meteorology.

An autoencoder neural network with a linear hidden layer is similar to PCA. Upon convergence, the weight vectors of the K neurons in the hidden layer will form a basis for the space spanned by the first K principal components. Unlike PCA, this technique will not necessarily produce orthogonal vectors.

PCA is a popular primary technique in pattern recognition. But it is not optimized for class separability[4]. An alternative is the linear discriminant analysis, which does take this into account.

Table of symbols and abbreviations

Symbol Meaning Dimensions Indices
\mathbf{X} = \{ X[m,n] \} data matrix, consisting of the set of all data vectors, one vector per column  M \times N  m = 1 \ldots M
 n = 1 \ldots N
N \, the number of column vectors in the data set 1 \times 1 scalar
M \, the number of elements in each column vector (dimension) 1 \times 1 scalar
L \, the number of dimensions in the dimensionally reduced subspace,  1 \le L \le M 1 \times 1 scalar
\mathbf{u} = \{ u[m] \} vector of empirical means, one mean for each row m of the data matrix  M \times 1  m = 1 \ldots M
\mathbf{s} = \{ s[m] \} vector of empirical standard deviations, one standard deviation for each row m of the data matrix  M \times 1  m = 1 \ldots M
\mathbf{h} = \{ h[n] \} vector of all 1's  1 \times N  n = 1 \ldots N
\mathbf{B} = \{ B[m,n] \} deviations from the mean of each row m of the data matrix  M \times N  m = 1 \ldots M
 n = 1 \ldots N
\mathbf{Z} = \{ Z[m,n] \} z-scores, computed using the mean and standard deviation for each row m of the data matrix  M \times N  m = 1 \ldots M
 n = 1 \ldots N
\mathbf{C} = \{ C[p,q] \} covariance matrix  M \times M  p = 1 \ldots M
 q = 1 \ldots M
\mathbf{R} = \{ R[p,q] \} correlation matrix  M \times M  p = 1 \ldots M
 q = 1 \ldots M
 \mathbf{V} = \{ V[p,q] \} matrix consisting of the set of all eigenvectors of C, one eigenvector per column  M \times M  p = 1 \ldots M
 q = 1 \ldots M
\mathbf{D} = \{ D[p,q] \} diagonal matrix consisting of the set of all eigenvalues of C along its principal diagonal, and 0 for all other elements  M \times M  p = 1 \ldots M
 q = 1 \ldots M
\mathbf{W} = \{ W[p,q] \} matrix of basis vectors, one vector per column, where each basis vector is one of the eigenvectors of C, and where the vectors in W are a sub-set of those in V  M \times L  p = 1 \ldots M
 q = 1 \ldots L
\mathbf{Y} = \{ Y[m,n] \} matrix consisting of N column vectors, where each vector is the projection of the corresponding data vector from matrix X onto the basis vectors contained in the columns of matrix W.  L \times N  m = 1 \ldots L
 n = 1 \ldots N

Properties and limitations of PCA

PCA is theoretically the optimal linear scheme, in terms of least mean square error, for compressing a set of high dimensional vectors into a set of lower dimensional vectors and then reconstructing the original set. It is a non-parametric analysis and the answer is unique and independent of any hypothesis about data probability distribution. However, the latter two properties are regarded as weakness as well as strength, in that being non-parametric, no prior knowledge can be incorporated and that PCA compressions often incur loss of information.

The applicability of PCA is limited by the assumptions[5] made in its derivation. These assumptions are:

We assumed the observed data set to be linear combinations of certain basis. Non-linear methods such as kernel PCA have been developed without assuming linearity.
PCA uses the eigenvectors of the covariance matrix and it only finds the independent axes of the data under the Gaussian assumption. For non-Gaussian or multi-modal Gaussian data, PCA simply de-correlates the axes. When PCA is used for clustering, its main limitation is that it does not account for class separability since it makes no use of the class label of the feature vector. There is no guarantee that the directions of maximum variance will contain good features for discrimination.
PCA simply performs a coordinate rotation that aligns the transformed axes with the directions of maximum variance. It is only when we believe that the observed data has a high signal-to-noise ratio that the principal components with larger variance correspond to interesting dynamics and lower ones correspond to noise.

Essentially, PCA involves only rotation and scaling. The above assumptions are made in order to simplify the algebraic computation on the data set. Some other methods have been developed without one or more of these assumptions; these are described below.

Computing PCA using the covariance method

Following is a detailed description of PCA using the covariance method (see also here). The goal is to transform a given data set X of dimension M to an alternative data set Y of smaller dimension L. Equivalently, we are seeking to find the matrix Y, where Y is the Karhunen–Loève transform (KLT) of matrix X:

 \mathbf{Y} = \mathbb{KLT} \{ \mathbf{X} \}

Organize the data set

Suppose you have data comprising a set of observations of M variables, and you want to reduce the data so that each observation can be described with only L variables, L < M. Suppose further, that the data are arranged as a set of N data vectors \mathbf{x}_1 \ldots \mathbf{x}_N with each \mathbf{x}_n representing a single grouped observation of the M variables.

Calculate the empirical mean

u[m] = {1 \over N} \sum_{n=1}^N X[m,n]

Calculate the deviations from the mean

Mean subtraction is an integral part of the solution towards finding a principal component basis that minimizes the mean square error of approximating the data[6]. Hence we proceed by centering the data as follows:

\mathbf{B} = \mathbf{X} - \mathbf{u}\mathbf{h}
where h is a 1 × N row vector of all 1s:
h[n] = 1 \, \qquad \qquad \text{for } n = 1, \ldots, N

Find the covariance matrix

\mathbf{C} = \mathbb{ E } \left[ \mathbf{B} \otimes \mathbf{B} \right] = \mathbb{ E } \left[ \mathbf{B} \cdot \mathbf{B}^{*} \right] = { 1 \over N } \sum_{} \mathbf{B} \cdot \mathbf{B}^{*}
where
\mathbb{E} is the expected value operator,
 \otimes is the outer product operator, and
 * \ is the conjugate transpose operator. Note that if B consists entirely of real numbers, which is the case in many applications, the "conjugate transpose" is the same as the regular transpose.

Find the eigenvectors and eigenvalues of the covariance matrix

\mathbf{V}^{-1} \mathbf{C} \mathbf{V} = \mathbf{D}
where D is the diagonal matrix of eigenvalues of C. This step will typically involve the use of a computer-based algorithm for computing eigenvectors and eigenvalues. These algorithms are readily available as sub-components of most matrix algebra systems, such as MATLAB[7][8], Mathematica[9], SciPy, IDL(Interactive Data Language), or GNU Octave as well as OpenCV.
D[p,q] = \lambda_m \qquad \text{for } p = q = m
is the mth eigenvalue of the covariance matrix C, and
D[p,q] = 0 \qquad \text{for } p \ne q.

Rearrange the eigenvectors and eigenvalues

Compute the cumulative energy content for each eigenvector

g[m] = \sum_{q=1}^m D[q,q] \qquad \mathrm{for} \qquad m = 1,\dots,M

Select a subset of the eigenvectors as basis vectors

 W[p,q] = V[p,q] \qquad \mathrm{for} \qquad p = 1,\dots,M \qquad q = 1,\dots,L
where
1 \leq L \leq M.
 g[m=L] \ge 90%\,

Convert the source data to z-scores

 \mathbf{s} = \{ s[m] \} = \sqrt{C[p,q]} \qquad \text{for } p = q = m = 1, \ldots, M
 \mathbf{Z} = { \mathbf{B} \over \mathbf{s} \cdot \mathbf{h} } (divide element-by-element)

Project the z-scores of the data onto the new basis

 \mathbf{Y} = \mathbf{W}^* \cdot \mathbf{Z} = \mathbb{KLT} \{ \mathbf{X} \}.

Derivation of PCA using the covariance method

Let X be a d-dimensional random vector expressed as column vector. Without loss of generality, assume X has zero mean. We want to find a d \times d orthonormal transformation matrix P such that

\mathbf{Y} = \mathbf{P}^\top \mathbf{X}

with the constraint that

\operatorname{cov}(\mathbf{Y}) is a diagonal matrix and \mathbf{P}^{-1} = \mathbf{P}^\top.

By substitution, and matrix algebra, we obtain:


\begin{align}
\operatorname{cov}(\mathbf{Y}) &= \mathbb{E}[ \mathbf{Y} \mathbf{Y}^\top]\\
\ &= \mathbb{E}[( \mathbf{P}^\top \mathbf{X} ) ( \mathbf{P}^\top \mathbf{X} )^\top]\\
\ &= \mathbb{E}[(\mathbf{P}^\top \mathbf{X}) (\mathbf{X}^\top \mathbf{P})] \\
\ &= \mathbf{P}^\top \mathbb{E}[\mathbf{X} \mathbf{X}^\top] \mathbf{P} \\
\ &= \mathbf{P}^\top \operatorname{cov}(\mathbf{X}) \mathbf{P}
\end{align}

We now have:


\begin{align}
\mathbf{P}\operatorname{cov}(\mathbf{Y}) &= \mathbf{P} \mathbf{P}^\top \operatorname{cov}(\mathbf{X}) \mathbf{P}\\
\ &= \operatorname{cov}(\mathbf{X}) \mathbf{P}\\
\end{align}

Rewrite P as d d \times 1 column vectors, so

\mathbf{P} = [P_1, P_2, \ldots, P_d]

and \operatorname{cov}(\mathbf{Y}) as:


\begin{bmatrix}
\lambda_1 & \cdots & 0 \\
\vdots & \ddots & \vdots \\
0 & \cdots & \lambda_d
\end{bmatrix}.

Substituting into equation above, we obtain:

[\lambda_1 P_1, \lambda_2 P_2, \ldots, \lambda_d P_d] =
[\operatorname{cov}(\mathbf{X})P_1, \operatorname{cov}(\mathbf{X})P_2,
\ldots, \operatorname{cov}(\mathbf{X})P_d].

Notice that in \lambda_i P_i = \operatorname{cov}(\mathbf{X})P_i, Pi is an eigenvector of the covariance matrix of X. Therefore, by finding the eigenvectors of the covariance matrix of X, we find a projection matrix P that satisfies the original constraints.

Computing principal components with expectation maximization

In practical implementations especially with high dimensional data, the covariance method is rarely used because it is not efficient. Expectation maximization is one way to compute principal components efficiently[10]. The following pseudo-code computes the first principal component of a data matrix, XT, with zero mean, without ever computing its covariance[10],

\mathbf{p} = a random vector

do c times:
      \mathbf{t} = 0
      for each row \mathbf{x} \in \mathbf{X^T}
            \mathbf{t} = \mathbf{t} + (\mathbf{x} \cdot \mathbf{p})\mathbf{x}
      \mathbf{p} = \frac{\mathbf{t}}{|\mathbf{t}|}
return \mathbf{p}

The algorithm is nothing but the power iteration applied to the covariance matrix expressed as a sum of outer products (thereby avoiding direct calculation of the matrix itself, and thus requiring less computation). p will typically converge to the first principal component of XT within a small number of iterations, c. (The magnitude of t will be larger after each iteration. Convergence can be detected when it increases by an amount too small for the precision of the machine.)

Subsequent principal components can be computed by subtracting component p from XT (see Gram–Schmidt) and then repeating this algorithm to find the next principal component. However this simple approach is not numerically stable if more than a small number of principal components are required, because imprecisions in the calculations will additively affect the estimates of subsequent principal components. More advanced methods build on this basic idea, as with the closely related Lanczos algorithm.

One way to compute the eigenvalue that corresponds with each principal component is to measure the difference in sum-squared-distance between the rows and the mean, before and after subtracting out the principal component. The eigenvalue that corresponds with the component that was removed is equal to this difference divided by the number of dimensions (columns).

The NIPALS method

For very high-dimensional datasets, such as those generated in the *omics sciences (e.g., genomics, metabolomics) it is usually only necessary to compute the first few PCs. The non-linear iterative partial least squares (NIPALS) algorithm calculates t1 and p1' from X. The outer product, t1p1' can then be subtracted from X leaving the residual matrix E1. This can be then used to calculate subsequent PCs.[11] This results in a dramatic reduction in computational time since calculation of the covariance matrix is avoided.

Relation between PCA and K-means clustering

It has been shown recently (2007) [12] [13] that the relaxed solution of K-means clustering, specified by the cluster indicators, is given by the PCA principal components, and the PCA subspace spanned by the principal directions is identical to the cluster centroid subspace specified by the between-class scatter matrix. Thus PCA automatically projects to the subspace where the global solution of K-means clustering lie, and thus facilitate K-means clustering to find near-optimal solutions.

Correspondence analysis

Correspondence analysis (CA) was developed by Jean-Paul Benzécri[14] and is conceptually similar to PCA, but scales the data (which should be non-negative) so that rows and columns are treated equivalently. It is traditionally applied to contingency tables. CA decomposes the chi-square statistic associated to this table into orthogonal factors[15]. Because CA is a descriptive technique, it can be applied to tables for which the chi-square statistic is appropriate or not. Several variants of CA are available including detrended correspondence analysis and canonical correspondence analysis. One special extension is Multiple correspondence analysis, which may be seen as the counterpart of principal component analysis for categorical data.[16].

Generalizations

Nonlinear generalizations

Linear PCA versus nonlinear Principal Manifolds[17] for visualization of breast cancer microarray data: a) Configuration of nodes and 2D Principal Surface in the 3D PCA linear manifold. The dataset is curved and can not be mapped adequately on a 2D principal plane; b) The distribution in the internal 2D non-linear principal surface coordinates (ELMap2D) together with an estimation of the density of points; c) The same as b), but for the linear 2D PCA manifold (PCA2D). The “basal” breast cancer subtype is visualized more adequately with ELMap2D and some features of the distribution become better resolved in comparison to PCA2D. Principal manifolds are produced by the elastic maps algorithm. Data are available for public competition[18].

Most of the modern methods for nonlinear dimensionality reduction find their theoretical and algorithmic roots in PCA or K-means. Pearson's original idea was to take a straight line (or plane) which will be "the best fit" to a set of data points. Principal curves and manifolds[19] give the natural geometric framework for PCA generalization and extend the geometric interpretation of PCA by explicitly constructing an embedded manifold for data approximation, and by encoding using standard geometric projection onto the manifold, as it is illustrated by Fig. See also principal geodesic analysis.

Higher order

N-way principal component analysis may be performed with models such as Tucker decomposition, PARAFAC, multiple factor analysis, co-inertia analysis, STATIS, and DISTATIS.

Robustness - Weighted PCA

While PCA finds the mathematically optimal method (as in minimizing the squared error), it is sensitive to outliers in the data that produce large errors PCA tries to avoid. It therefore is common practise to remove outliers before computing PCA. However, in some contexts, outliers can be difficult to identify. For example in data mining algorithms like correlation clustering, the assignment of points to clusters and outliers is not known beforehand. A recently proposed generalization of PCA [20] based on a Weighted PCA increases robustness by assigning different weights to data objects based on their estimated relevancy.

Software/source code

Notes

  1. Pearson, K. (1901). "On Lines and Planes of Closest Fit to Systems of Points in Space" (PDF). Philosophical Magazine 2 (6): 559–572. http://stat.smmu.edu.cn/history/pearson1901.pdf. 
  2. Jolliffe I.T. Principal Component Analysis, Series: Springer Series in Statistics, 2nd ed., Springer, NY, 2002, XXIX, 487 p. 28 illus. ISBN 978-0-387-95442-4
  3. A. A. Miranda, Y. A. Le Borgne, and G. Bontempi. New Routes from Minimal Approximation Error to Principal Components, Volume 27, Number 3 / June, 2008, Neural Processing Letters, Springer
  4. Fukunaga, Keinosuke (1990). Introduction to Statistical Pattern Recognition. Elsevier. http://books.google.com/books?visbn=0122698517. 
  5. Jonathon Shlens, A Tutorial on Principal Component Analysis.
  6. A.A. Miranda, Y.-A. Le Borgne, and G. Bontempi. New Routes from Minimal Approximation Error to Principal Components, Volume 27, Number 3 / June, 2008, Neural Processing Letters, Springer
  7. eig function Matlab documentation
  8. MATLAB PCA-based Face recognition software
  9. Eigenvalues function Mathematica documentation
  10. 10.0 10.1 Roweis, Sam. "EM Algorithms for PCA and SPCA." Advances in Neural Information Processing Systems. Ed. Michael I. Jordan, Michael J. Kearns, and Sara A. Solla The MIT Press, 1998.
  11. Geladi, Paul; Kowalski, Bruce (1986). "Partial Least Squares Regression:A Tutorial". Analytica Chimica Acta 185: 1–17. doi:10.1016/0003-2670(86)80028-9. 
  12. H. Zha, C. Ding, M. Gu, X. He and H.D. Simon. "Spectral Relaxation for K-means Clustering", http://ranger.uta.edu/~chqding/papers/Zha-Kmeans.pdf, Neural Information Processing Systems vol.14 (NIPS 2001). pp. 1057–1064, Vancouver, Canada. Dec. 2001.
  13. C. Ding and X. He. "K-means Clustering via Principal Component Analysis". Proc. of Int'l Conf. Machine Learning (ICML 2004), pp 225–232. July 2004. http://ranger.uta.edu/~chqding/papers/KmeansPCA1.pdf
  14. Benzécri, J.-P. (1973). L'Analyse des Données. Volume II. L'Analyse des Correspondances. Paris, France: Dunod. 
  15. Greenacre, Michael (1983). Theory and Applications of Correspondence Analysis. London: Academic Press. ISBN 0-12-299050-1. 
  16. Le Roux, Brigitte and Henry Rouanet (2004). Geometric Data Analysis, From Correspondence Analysis to Structured Data Analysis. Dordrecht: Kluwer. 
  17. A. N. Gorban, A. Y. Zinovyev, Principal Graphs and Manifolds, In: Handbook of Research on Machine Learning Applications and Trends: Algorithms, Methods and Techniques, Olivas E.S. et al Eds. Information Science Reference, IGI Global: Hershey, PA, USA, 2009. 28-59.
  18. Wang, Y., Klijn, J.G., Zhang, Y., Sieuwerts, A.M., Look, M.P., Yang, F., Talantov, D., Timmermans, M., Meijer-van Gelder, M.E., Yu, J. et al.: Gene expression profiles to predict distant metastasis of lymph-node-negative primary breast cancer. Lancet 365, 671-679 (2005); Data online
  19. A. Gorban, B. Kegl, D. Wunsch, A. Zinovyev (Eds.), Principal Manifolds for Data Visualisation and Dimension Reduction, LNCSE 58, Springer, Berlin – Heidelberg – New York, 2007. ISBN 978-3-540-73749-0
  20. doi: 10.1007/978-3-540-69497-7_27
    This citation will be automatically completed in the next few minutes. You can jump the queue or expand by hand

See also

  • Sparse PCA
  • Biplot
  • Eigenface
  • Exploratory factor analysis (Wikiversity)
  • Factor analysis
  • Geometric data analysis
  • Factorial code
  • Independent component analysis
  • Time Adaptive Self-Organizing Map
  • Kernel PCA
  • Elastic map
  • Matrix decomposition
  • Nonlinear dimensionality reduction
  • Oja's rule
  • PCA network
  • PCA applied to yield curves
  • Point distribution model (PCA applied to morphometry and computer vision)
  • Principal component regression
  • Principal component analysis (Wikibooks)
  • Singular spectrum analysis
  • Singular value decomposition
  • Transform coding
  • Weighted least squares
  • Dynamic mode decomposition

References

External links

Non-technical introductions